home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / wrapper / wrapper.conf < prev   
Encoding:
Text File  |  2010-08-04  |  7.5 KB  |  200 lines

  1. #encoding=UTF-8
  2. # Configuration files must begin with a line specifying the encoding
  3. #  of the the file.
  4.  
  5. #********************************************************************
  6. # Wrapper License Properties (Ignored by Community Edition)
  7. #********************************************************************
  8. # Professional and Standard Editions of the Wrapper require a valid
  9. #  License Key to start.  Licenses can be purchased or a trial license
  10. #  requested on the following pages:
  11. # http://wrapper.tanukisoftware.com/purchase
  12. # http://wrapper.tanukisoftware.com/trial
  13.  
  14. # Include file problems can be debugged by removing the first '#'
  15. #  from the following line:
  16. ##include.debug
  17.  
  18. # The Wrapper will look for either of the following optional files for a
  19. #  valid License Key.  License Key properties can optionally be included
  20. #  directly in this configuration file.
  21. #include ../conf/wrapper-license.conf
  22. #include ../conf/wrapper-license-%WRAPPER_HOST_NAME%.conf
  23.  
  24. # The following property will output information about which License Key(s)
  25. #  are being found, and can aid in resolving any licensing problems.
  26. #wrapper.license.debug=TRUE
  27.  
  28. #********************************************************************
  29. # Wrapper Localization
  30. #********************************************************************
  31. # Specify the locale which the Wrapper should use.  By default the system
  32. #  locale is used.
  33. #wrapper.lang=en_US # en_US or ja_JP
  34.  
  35. # Specify the location of the Wrapper's language resources.  If these are
  36. #  missing, the Wrapper will default to the en_US locale.
  37. wrapper.lang.folder=../lang
  38.  
  39. #********************************************************************
  40. # Wrapper Java Properties
  41. #********************************************************************
  42. # Java Application
  43. #  Locate the java binary on the system PATH:
  44. wrapper.java.command=java
  45. #  Specify a specific java binary:
  46. #set.JAVA_HOME=/java/path
  47. #wrapper.java.command=%JAVA_HOME%/bin/java
  48.  
  49. # Tell the Wrapper to log the full generated Java command line.
  50. #wrapper.java.command.loglevel=INFO
  51.  
  52. # Java Main class.  This class must implement the WrapperListener interface
  53. #  or guarantee that the WrapperManager class is initialized.  Helper
  54. #  classes are provided to do this for you.  See the Integration section
  55. #  of the documentation for details.
  56. wrapper.java.mainclass=org.tanukisoftware.wrapper.test.Main
  57.  
  58. # Java Classpath (include wrapper.jar)  Add class path elements as
  59. #  needed starting from 1
  60. wrapper.java.classpath.1=../lib/wrappertest.jar
  61. wrapper.java.classpath.2=../lib/wrapper.jar
  62.  
  63. # Java Library Path (location of Wrapper.DLL or libwrapper.so)
  64. wrapper.java.library.path.1=../lib
  65.  
  66. # Java Bits.  On applicable platforms, tells the JVM to run in 32 or 64-bit mode.
  67. wrapper.java.additional.auto_bits=TRUE
  68.  
  69. # Java Additional Parameters
  70. #wrapper.java.additional.1=
  71.  
  72. # Initial Java Heap Size (in MB)
  73. #wrapper.java.initmemory=3
  74.  
  75. # Maximum Java Heap Size (in MB)
  76. #wrapper.java.maxmemory=64
  77.  
  78. # Application parameters.  Add parameters as needed starting from 1
  79. #wrapper.app.parameter.1=
  80.  
  81. #********************************************************************
  82. # Wrapper Logging Properties
  83. #********************************************************************
  84. # Enables Debug output from the Wrapper.
  85. # wrapper.debug=TRUE
  86.  
  87. # Format of output for the console.  (See docs for formats)
  88. wrapper.console.format=PM
  89.  
  90. # Log Level for console output.  (See docs for log levels)
  91. wrapper.console.loglevel=INFO
  92.  
  93. # Log file to use for wrapper output logging.
  94. wrapper.logfile=../logs/wrapper.log
  95.  
  96. # Format of output for the log file.  (See docs for formats)
  97. wrapper.logfile.format=LPTM
  98.  
  99. # Log Level for log file output.  (See docs for log levels)
  100. wrapper.logfile.loglevel=INFO
  101.  
  102. # Maximum size that the log file will be allowed to grow to before
  103. #  the log is rolled. Size is specified in bytes.  The default value
  104. #  of 0, disables log rolling.  May abbreviate with the 'k' (kb) or
  105. #  'm' (mb) suffix.  For example: 10m = 10 megabytes.
  106. wrapper.logfile.maxsize=0
  107.  
  108. # Maximum number of rolled log files which will be allowed before old
  109. #  files are deleted.  The default value of 0 implies no limit.
  110. wrapper.logfile.maxfiles=0
  111.  
  112. # Log Level for sys/event log output.  (See docs for log levels)
  113. wrapper.syslog.loglevel=NONE
  114.  
  115. #********************************************************************
  116. # Wrapper General Properties
  117. #********************************************************************
  118. # Allow for the use of non-contiguous numbered properties
  119. wrapper.ignore_sequence_gaps=TRUE
  120.  
  121. # Title to use when running as a console
  122. wrapper.console.title=Test Wrapper Sample Application
  123.  
  124. #********************************************************************
  125. # Wrapper JVM Checks
  126. #********************************************************************
  127. # Detect DeadLocked Threads in the JVM. (Requires Standard Edition)
  128. wrapper.check.deadlock=TRUE
  129. wrapper.check.deadlock.interval=10
  130. wrapper.check.deadlock.action=RESTART
  131. wrapper.check.deadlock.output=FULL
  132.  
  133. # Out Of Memory detection.
  134. wrapper.filter.trigger.1000=java.lang.OutOfMemoryError
  135. wrapper.filter.action.1000=RESTART
  136. wrapper.filter.message.1000=The JVM has run out of memory.
  137.  
  138. #********************************************************************
  139. # Wrapper Email Notifications. (Requires Professional Edition)
  140. #********************************************************************
  141. # Common Event Email settings.
  142. #wrapper.event.default.email.debug=TRUE
  143. #wrapper.event.default.email.smtp.host=<SMTP_Host>
  144. #wrapper.event.default.email.smtp.port=25
  145. #wrapper.event.default.email.subject=[%WRAPPER_HOSTNAME%:%WRAPPER_NAME%:%WRAPPER_EVENT_NAME%] Event Notification
  146. #wrapper.event.default.email.sender=<Sender email>
  147. #wrapper.event.default.email.recipient=<Recipient email>
  148.  
  149. # Configure the log attached to event emails.
  150. #wrapper.event.default.email.attach_log=TRUE
  151. #wrapper.event.default.email.maillog.lines=50
  152. #wrapper.event.default.email.maillog.format=LPTM
  153. #wrapper.event.default.email.maillog.loglevel=INFO
  154.  
  155. # Enable specific event emails.
  156. #wrapper.event.wrapper_start.email=TRUE
  157. #wrapper.event.jvm_prelaunch.email=TRUE
  158. #wrapper.event.jvm_start.email=TRUE
  159. #wrapper.event.jvm_started.email=TRUE
  160. #wrapper.event.jvm_deadlock.email=TRUE
  161. #wrapper.event.jvm_stop.email=TRUE
  162. #wrapper.event.jvm_stopped.email=TRUE
  163. #wrapper.event.jvm_restart.email=TRUE
  164. #wrapper.event.jvm_failed_invocation.email=TRUE
  165. #wrapper.event.jvm_max_failed_invocations.email=TRUE
  166. #wrapper.event.jvm_kill.email=TRUE
  167. #wrapper.event.jvm_killed.email=TRUE
  168. #wrapper.event.jvm_unexpected_exit.email=TRUE
  169. #wrapper.event.wrapper_stop.email=TRUE
  170.  
  171. # Specify custom mail content
  172. wrapper.event.jvm_restart.email.body=The JVM was restarted.\n\nPlease check on its status.\n
  173.  
  174. #********************************************************************
  175. # Wrapper Windows NT/2000/XP Service Properties
  176. #********************************************************************
  177. # WARNING - Do not modify any of these properties when an application
  178. #  using this configuration file has been installed as a service.
  179. #  Please uninstall the service before modifying this section.  The
  180. #  service can then be reinstalled.
  181.  
  182. # Name of the service
  183. wrapper.name=testwrapper
  184.  
  185. # Display name of the service
  186. wrapper.displayname=Test Wrapper Sample Application
  187.  
  188. # Description of the service
  189. wrapper.description=Test Wrapper Sample Application Description
  190.  
  191. # Service dependencies.  Add dependencies as needed starting from 1
  192. wrapper.ntservice.dependency.1=
  193.  
  194. # Mode in which the service is installed.  AUTO_START, DELAY_START or DEMAND_START
  195. wrapper.ntservice.starttype=AUTO_START
  196.  
  197. # Allow the service to interact with the desktop.
  198. wrapper.ntservice.interactive=false
  199.  
  200.